stylecontext: Move private a11y function to private header
authorBenjamin Otte <otte@redhat.com>
Sun, 15 Jun 2014 16:03:59 +0000 (18:03 +0200)
committerBenjamin Otte <otte@redhat.com>
Sat, 16 Aug 2014 17:39:44 +0000 (19:39 +0200)
gtk/a11y/gtkentryaccessible.c
gtk/a11y/gtklabelaccessible.c
gtk/a11y/gtktextcellaccessible.c
gtk/gtkstylecontext.h
gtk/gtkstylecontextprivate.h

index 3f2d77e32c831836b6cf32ddbfad460365c1d197..e289eb43e0f09d725b0e956f45673885ab8fbbb0 100644 (file)
@@ -24,6 +24,7 @@
 #include "gtkentryaccessible.h"
 #include "gtkentryprivate.h"
 #include "gtkcomboboxaccessible.h"
+#include "gtkstylecontextprivate.h"
 
 #define GTK_TYPE_ENTRY_ICON_ACCESSIBLE      (gtk_entry_icon_accessible_get_type ())
 #define GTK_ENTRY_ICON_ACCESSIBLE(obj)      (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ENTRY_ICON_ACCESSIBLE, GtkEntryIconAccessible))
index a2bf47513a9b9d4e6e3de5bc31a1024b5047ff0a..88f4b7759c5872314be400246167612e48c5bd19 100644 (file)
@@ -25,6 +25,7 @@
 #include "gtklabelprivate.h"
 #include "gtklabelaccessible.h"
 #include "gtklabelaccessibleprivate.h"
+#include "gtkstylecontextprivate.h"
 
 struct _GtkLabelAccessiblePrivate
 {
index c41123284f2bc8cfba9b5226bf452674d9f1f64d..a5fd435ffe7be5887488aca391c8533adfb03312 100644 (file)
@@ -22,6 +22,7 @@
 #include "gtktextcellaccessible.h"
 #include "gtkcontainercellaccessible.h"
 #include "gtkcellaccessibleparent.h"
+#include "gtkstylecontextprivate.h"
 
 struct _GtkTextCellAccessiblePrivate
 {
index 8bb499395b3b3707fa28f62aecd80e6b5ff69707..7f11b1ad4f506119a351b9a9381d3d7c8b51084b 100644 (file)
@@ -1254,11 +1254,6 @@ void   gtk_draw_insertion_cursor    (GtkWidget          *widget,
                                      GtkTextDirection    direction,
                                      gboolean            draw_arrow);
 
-/* Accessibility support */
-AtkAttributeSet *_gtk_style_context_get_attributes (AtkAttributeSet *attributes,
-                                                    GtkStyleContext *context,
-                                                    GtkStateFlags    flags);
-
 G_END_DECLS
 
 #endif /* __GTK_STYLE_CONTEXT_H__ */
index 5c1b240a41fdb12b9abf42812eb36cf540013201..4b9486693bbedf04f8cd4effcee55c2d49f3e1e5 100644 (file)
@@ -63,6 +63,11 @@ void           _gtk_style_context_get_icon_extents           (GtkStyleContext
                                                               gint                height);
 GtkIconLookupFlags _gtk_style_context_get_icon_lookup_flags  (GtkStyleContext    *context);
 
+/* Accessibility support */
+AtkAttributeSet *_gtk_style_context_get_attributes           (AtkAttributeSet    *attributes,
+                                                              GtkStyleContext    *context,
+                                                              GtkStateFlags       flags);
+
 G_END_DECLS
 
 #endif /* __GTK_STYLE_CONTEXT_PRIVATE_H__ */